home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bzip2.postinst < prev    next >
Encoding:
Text File  |  2007-03-05  |  582 b   |  25 lines

  1. #!/bin/sh
  2. set -eu
  3.  
  4. # Doc base
  5. if [ "$1" = "configure" ] ; then
  6. # if command -v install-docs >/dev/null 2>&1; then
  7. #   install-docs -i /usr/share/doc-base/bzip2
  8. # fi
  9.   if test -x /usr/sbin/install-docs >/dev/null 2>&1; then
  10.     /usr/sbin/install-docs -i /usr/share/doc-base/bzip2
  11.   fi
  12. fi
  13.  
  14. # Info
  15. install-info --quiet --section "General Commands" "General Commands" \
  16.     /usr/share/info/bzip2.info
  17.  
  18. # FHS
  19. #pkg=bzip2
  20. #if [ "$1" = "configure" ]; then
  21. # if [ -d /usr/doc ] && [ ! -e /usr/doc/$pkg ] && [ -d /usr/share/doc/$pkg ]; then
  22. #  ln -sf ../share/doc/$pkg /usr/doc/$pkg
  23. # fi
  24. #fi
  25.